home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network AD Schema 1.xpl < prev    next >
Text File  |  2002-10-31  |  1KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Network\Server\ActiveDirectory"
  5. "NAME"="ActiveDirectory Schema Options"
  6. "VERSION"="1.04"
  7. "OSVERSION"="0001011"
  8. "WARNING"="1"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="Allow updates for ActiveDirectory schema"
  11. "DESCRIPTION 1"="By default, Windows 2000 only allows read access to the schema."
  12. "DESCRIPTION 2"="In some very rare cases, it can be necessary to modify the schema which can be enabled with this option."
  13. "DESCRIPTION 3"="This change needs to be made on the Schema FSMO server, *NOT* on a local Workstation. Please see http://support.microsoft.com/support/kb/articles/Q216/0/60.ASP for more information."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="see MS KB Q216060"
  19.  
  20. sV1="HKLM\System\CurrentControlSet\Services\NTDS\Parameters\Schema Update Allowed"
  21.  
  22. Sub Plugin_Initialize 
  23.     i=RegReadValue(sV1)
  24.     if i=1 then SetUIElement 1,true
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  If GetUIElement(1)=true then
  32.     Call RegWriteValue(sV1,1,2)
  33.  else
  34.     Call RegWriteValue(sV1,0,2)
  35.  end if
  36.  
  37.  
  38.  'Restart
  39. End Sub
  40.  
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.  
  45.  
  46.  
  47.